home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / diff.arc / MAKEFILE < prev    next >
Text File  |  1988-07-20  |  1KB  |  42 lines

  1. #
  2. # Makefile for Public Domain Diff
  3. #
  4. # the two 'include' directive are for these USG 5.3 machines (or 3B1) which
  5. # have shared libraries.  Comment them out if you do not have shared 
  6. # libraries on your system.
  7.  
  8. include $(MAKEINC)/Makepre.h
  9.  
  10. #
  11. # You may want to use one or more of the following definitions when compiling,
  12. # depending on what your target environment is, and whether you want debugging
  13. # turned on or off.
  14. #
  15. #    TURBO   - compile for TURBO C target (See TC-READ.ME for details)
  16. #    AMIGA   - compile for AMIGA target
  17. #    OSK     - compile for OSK
  18. #    DEBUG   - turn on debugging (implies TIMING) 
  19. #    TIMING  - turn on timing code
  20. #    MSC     - Microsoft C 4.0 (small model support)
  21. #
  22. # additional support for vax, or pdp11 are invoked by defining 'vax'
  23. # or 'pdp11'.  These should be defined by your preprocessor if you are
  24. # on one of these machines.
  25. #
  26. # CFLAGS = -O -DTURBOC
  27. CFLAGS = -O
  28. LDFLAGS = -s
  29.  
  30. # The first line ('cc ...') is for standard C compilers, the second line
  31. # ('$(LD) ...') is for shared library machines.  Use whichever line is 
  32. # appropriate for your system and comment the other one out.
  33.  
  34. diff: diff.o
  35. #    cc $(LDFLAGS) diff.o -o diff
  36.     $(LD) $(SHAREDLIB) $(LDFLAGS) diff.o -o diff
  37.  
  38. clean:
  39.     rm -f *.o a.out core diff
  40.  
  41. include $(MAKEINC)/Makepost.h
  42.